home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / METAKIT.ZIP / EXAMPLES / CATSEND / CATSEND.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-09  |  1.1 KB  |  42 lines

  1. //    catsend.h  -  catalog send application sample code
  2. //
  3. //    This is a part of the MetaKit library.
  4. //    Copyright (c) 1996 Meta Four Software.
  5. //    All rights reserved.
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. #ifndef __AFXWIN_H__
  9.     #error include 'stdafx.h' before including this file for PCH
  10. #endif
  11.  
  12. #include "resource.h"        // main symbols
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CMyApp:
  16. // See CatSend.cpp for the implementation of this class
  17. //
  18.  
  19. class CMyApp : public CWinApp
  20. {
  21. public:
  22.     CMyApp();
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CMyApp)
  27.     public:
  28.     virtual BOOL InitInstance();
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32.  
  33.     //{{AFX_MSG(CMyApp)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // $Id: catsend.h,v 1.2 1996/12/04 14:49:57 jcw Exp $
  42.